home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 9675 / 9675.xpi / chrome / content / simpletimer.css < prev    next >
Cascading Style Sheet File  |  2009-11-28  |  4KB  |  159 lines

  1. /* Statusbar drag and drop display, based on IE Tab code */
  2.  
  3. statusbarpanel[simtimstatdrag="left"] {
  4.     -moz-appearance: none;
  5.     visibility: visible;
  6.     display: -moz-box !important;
  7.     border-left-width: 2px;
  8.     border-left-color: red;
  9. }
  10.  
  11. statusbarpanel[simtimstatdrag="right"] {
  12.     -moz-appearance: none;
  13.     visibility: visible;
  14.     display: -moz-box !important;
  15.     border-right-width: 2px;
  16.     border-right-color: red;
  17. }
  18.  
  19. .simtim-aboutName {
  20.     font-size: 200%;
  21.     font-family: georgia;
  22. }
  23.  
  24. .simtim-sliderName {
  25.     font-size: 125%;
  26.     font-weight: bold;
  27. }
  28.  
  29. .simtim-aboutCredits {
  30.     font-size: 85%;
  31. }
  32.  
  33. .simtim-aboutLinks {
  34.     color: blue;
  35.     cursor: pointer;
  36. }
  37.  
  38. #simtim-tpanelChangelog {
  39.     overflow: auto;
  40.     max-height: 20px;  /* so it uses height of Credits tab, no more */
  41. }
  42.  
  43. .simtim-aboutLogVersion {
  44.     font-size: 125%;
  45.     font-weight: bold;
  46. }
  47.  
  48. .simtim-prefGroupboxLabel {
  49.     font-size: 125%;
  50.     font-weight: bold;
  51. }
  52.  
  53. /* ugly focus ring -- actually line -- when no label on checkbox
  54.    so lets remove checkbox focus ring */
  55. checkbox:focus > .checkbox-label-box {
  56. border: 1px dotted transparent !important;
  57. }
  58.  
  59. /* prefpane sizing weirdness, so force it */
  60. prefpane#simtim-paneNotificationsSimple > vbox.content-box {
  61.    min-height: 24em;
  62. }
  63.  
  64. prefpane#simtim-paneMiscSimple > vbox.content-box {
  65.    min-height: 42em;
  66. }
  67.  
  68. dialog#simtim-dlgTimerComplete {
  69.    min-width: 250px;
  70. }
  71.  
  72. dialog#simtim-dlgEventLog {
  73.    min-width: 650px;
  74. }
  75.  
  76. .simtim-prefAudioListen {
  77.     list-style-image: url("chrome://simpletimer/content/images/audio.png");
  78. }
  79.  
  80. #simtim-statpanelImage[status="normal"] {
  81.     list-style-image: url("chrome://simpletimer/content/images/clockBlue16.png");
  82. }
  83.  
  84. #simtim-statpanelImage[status="notify"] {
  85.     list-style-image: url("chrome://simpletimer/content/images/clockRed16.png");
  86. }
  87.  
  88. #simtim-clock48Image {
  89.     list-style-image: url("chrome://simpletimer/content/images/clock48.png");
  90. }
  91.  
  92. textbox.simtim-borderColors {
  93.     -moz-appearance: none;
  94.     border: 3px solid;
  95.     -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow transparent;
  96.     -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow transparent;
  97.     -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow transparent;
  98.     -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow transparent;
  99. }
  100.  
  101. .simtim-boldLabel {
  102.     font-weight: bold;
  103. }
  104.  
  105. rows#simtim-rowsNotify {
  106.     background-color: #98F5FF;
  107.     color: #000000;
  108. }
  109.  
  110. rows#simtim-rowsTimers {
  111.     background-color: #FFAAEE;
  112.     color: #000000;
  113. }
  114.  
  115. treecol#simtim-colTime {
  116.     min-width: 80px;
  117. }
  118.  
  119. treecol#simtim-colRecur {
  120.     min-width: 30px;
  121. }
  122.  
  123. treechildren#simtim-treeItems::-moz-tree-checkbox {
  124.     /* unchecked checkbox treecells.
  125.        This style MUST come before treechildren::-moz-tree-checkbox(checked)
  126.        otherwise it won't take effect.  */
  127.     list-style-image: none;
  128.  
  129. }
  130.  
  131. treechildren#simtim-treeItems::-moz-tree-checkbox(checked){
  132.     /* checked cells. */
  133.     list-style-image: url("chrome://simpletimer/content/images/cbox-check.png");
  134. }
  135.  
  136. treechildren#simtim-treeItems::-moz-tree-row(selected) {
  137.     background-color: #FFFFAA;
  138. }
  139.  
  140. treechildren#simtim-treeItems::-moz-tree-row(odd) {
  141.     background-color: #EEEEEE;
  142. }
  143.  
  144. treechildren#simtim-treeItems::-moz-tree-row(odd, selected) {
  145.     background-color: #FFFFAA;
  146. }
  147.  
  148. treechildren#simtim-treeItems::-moz-tree-cell-text(odd) {
  149.     color: #000000;
  150. }
  151.  
  152. treechildren#simtim-treeItems::-moz-tree-cell-text(selected) {
  153.     color: #000000;
  154. }
  155.  
  156. treechildren#simtim-treeItems::-moz-tree-cell-text(odd, selected) {
  157.     color: #000000;
  158. }
  159.